Guess I didn't explain well. Mach3 doesn't do anything to the
kflop i/o that I've programed. Kflop is in full control of all
i/o. I am controlling all i/o via the c program. The
question really is about what happens between kflop and mach3 via
the driver.
The goal is that I must keep bits 152 to 156 set anytime I'm in
an estop condition or Mach3 is not control the position of the
axis
"When I go to estop" When I push my hardwired estop button power
is removed from the drives and kflop input bit 143 is made
active. In my c program this disables all axis and sets bits
152 to 156. This is all fine and works well and with bits 152
to 156 set no creep from the drives since the outputs are
hardwired to the drive disable inputs.
"When I come out of estop" When I pull out my estop button power
is turned on to the drives and kflop input bit 143 is made
inactive.
This is where I need advice. The only i/o bit I have mapped
between kflop and mach3 is the Estop bit. It looks like mach3
reruns the c program when the estop bit is made inactive. With
my c program this renables the axis but mach3 isn't controlling
the drives until I click the "software reset button" in Mach3.
So between pulling the estop button out and clicking the "software
reset button" I get axis creep.
I don't want to clear bits 152 to 156 I'm not in estop confition
AND until Mach3 is controlling the axis. How can I do this.
With my c program it would be as simple as something like this if
I knew a bit to look at. Maybe you have a better idea.
// if ESTOP or Mach3 is not in control
present disable any enabled Axis and set disable bit??
#define ESTOP_BIT 143
#define Mach3InControl_BIT ???
if (!(ReadBit(ESTOP_BIT)or
!(ReadBit(Mach3InControl_BIT))
{
if (ch0->Enable) // axis still
enabled? - Disable it
DisableAxis(0);
SetBit(152);
if (ch1->Enable) // axis still
enabled? - Disable it
DisableAxis(1);
SetBit(153);
if (ch2->Enable) // axis still
enabled? - Disable it
DisableAxis(2);
SetBit(154);
if (ch3->Enable) // axis still
enabled? - Disable it
DisableAxis(3);
SetBit(155);
if (ch4->Enable) // axis still
enabled? - Disable it
DisableAxis(4);
SetBit(156);
I see that Mach3 has enable 1 to 6 outputs. Can't find any
documentation that says what the do in Mach3. am I over thinking
this. Can I just map those Mach3 enables bits to bits 152 to 156
in kflop. If I knew how that react maybe is really is that
simple and I don't need the c program to do it.
On 3/2/2017 10:37 PM, Tom Kerekes
tk@... [DynoMotion] wrote:
Hi Barry,
Regarding Drift:
I'm not sure exactly what you mean by "When I go to
estop" and "when I come out of estop".
Actually Mach3 doesn't ever "control the drives". It
only sets/clears enable outputs and runs your init
program.
You didn't tell us how you have Mach3 configured. I'm
guessing you have the Mach3 ports&pins Enable bits
configured configured to also control your Amp enable bits
(152 - 156)? I think that may be the problem. Mach3
intentionally sets the enable outputs one by one with
delays (to supposedly avoid a current surge) and then does
the Reset. So in the mean time the drives may drift. it
would probably be better to set Mach3 to dummy bits and
let KFLOP and your init program be in full control of the
enables.
HTH
Regards
TK
On 3/2/2017 5:39 PM, harnett
harnett@...
[DynoMotion] wrote:
Ok here is the info I was able to gather Kflop 4.33
Build 18:05:42 Dec 1 2015, Mach 3 Version
R3.043.066
I've attached the log file but all I saw was
"Dynomotion Status: Comm Error" which is what was
shown at the bottom status bar of Mach3. Kflop/
Kanalog have a dedicated power supply. I'll have to
investigate further on the reboot issue and get back
to you.
The firmware message I get is "DPS_KMotion Date Stamp
Doesn't Match Kmotion Firmware" I'll get a screen shot
the next time this happens. These two issue happen
infrequently. The firmware issue has happened maybe 6
times and the Comm Error message only once. I'll try
to gather more info if you don't have any ideas at this
time.
On another more straight forward issue. I am
controlling my drives with an analog signal. As we've
talked about before when kflop is not controlling the
drive the voltage may not be exactly zero and I see some
small movement in the drive. I am working around this
by using a disable input on the drive attached to output
on kflop. I've tied this output to the axis enable in
my c program so that if the axis is disabled I turn on
the output and disable the drive electrically. This
works fine in kmotion and keeps the drive from
creeping. I trigger this when I go to estop. Problem
is when I'm in Mach3. When I go to estop all is well
and works fine. But when I come out of estop I have a
issue. When I electrically disengage the estop I
think mach3 runs the c program. Which re enables the
drive but Mach3 doesn't start controlling the drive
until I press the reset buttion in the Mach3 software.
So between those two steps the drive creeps. I can
see on the Mach3 software that it is monitoring the
estop bit and the frame of the reset button changes
color when I disengage the estop. How can I keep my
drives disabled until Mach3 is in control. If there
was a bit to look at I could just do an or condition
with the estop bit. Both would have to be ready before
the drive was enabled. Any thoughts on how I can do
this. Maybe you see another way to do my c program
that will be better.
I attached my c program file but here is the relative
code to axis enabling at the end.
EnableAxis(0);
EnableAxis(1);
EnableAxis(2);
EnableAxis(3);
EnableAxis(4);
DefineCoordSystem(0,2,3,-1);
for (;;) //loop forever
{
WaitNextTimeSlice();
// if ESTOP present disable any enabled Axis
and set disable bit??
#define ESTOP_BIT 143
if (!(ReadBit(ESTOP_BIT)))
{
if (ch0->Enable) // axis
still enabled? - Disable it
DisableAxis(0);
SetBit(152);
if (ch1->Enable) // axis
still enabled? - Disable it
DisableAxis(1);
SetBit(153);
if (ch2->Enable) // axis
still enabled? - Disable it
DisableAxis(2);
SetBit(154);
if (ch3->Enable) // axis
still enabled? - Disable it
DisableAxis(3);
SetBit(155);
if (ch4->Enable) // axis
still enabled? - Disable it
DisableAxis(4);
SetBit(156);
}
// if Axis enabled , clear disabled bit
if (ch0->Enable)
ClearBit(152);
if (ch1->Enable)
ClearBit(153);
if (ch2->Enable)
ClearBit(154);
if (ch3->Enable)
ClearBit(155);
if (ch4->Enable)
ClearBit(156);
}
return 0;
}
On 2/27/2017 2:55 PM, Tom
Kerekes
tk@...
[DynoMotion] wrote:
Hi Barry,
Sorry to hear that.
You are correct about the Firmware Version being
checked whenever you run the Initialization C
Program. It is checked whenever any C Program is
executed. And the Firmware Version should never
change on its own. More likely it is somehow
being miss read. That's why I asked you to report
the Time Stamps in the error messages in my last
email.
It sounds like you are confusing the Firmware
with something else. KMotion doesn't check or
report if the Firmware is already up to date.
Exactly what message to you receive? Maybe you
are referring to the Windows Driver?
How are you supplying +5V to KFLOP+Kanalog?
You might want to determine if KFLOP is
resetting/rebooting which would cause a
communication error. Or if only a communication
error has occurred. One trick I sometimes do is
to manually turn off one of KFLOP's LEDs. Then if
the LED turns back on I know KFLOP re-booted.
Please specify the versions of KMotion and Mach3
(please don't say the latest as that can be
somewhat vague).
Regards
TK
Tom,
Still having this issue. There is not a
lot of history on the machine in that it is a
new retrofit with DMM drives, Kflop and Mach3.
Very little run time. Maybe 50 hours
total. It may run fine for hours then I'll
get this Firmware error message. Yesterday I
booted everything up. Maybe up about 30 min.
Was jogging around getting ready for a run
and got the Firmware error. Rebooted and
started running a job. After around three
hours of running I got an error message in
Mach3 that said "Communication Error with
Dynomotion" First time I've seen this.
My C program only contains the initialization
routine for the axis. Is it possible that
something about the usb communication between
the PC and Kflop could cause these type of
errors. The pc is windows XP, Kflop is the
latest firmware. Mach3 is the latest version.
PC is not going to sleep.
If I understand you, when mach3 starts and
the c-program initialization routine is run
the firmware version in kflop is checked and
compared to the c-program. all is well
there. My gcode is created in Vectrics.
My firmware error has always happened after
mach3 is up a running, axes have been moved
around and all is well initially. A few
times it occurred in the middle of executing
a gcode program and as I mention while I was
jogging the axes around but the initial
firmware check passed when mach3 was started.
The firmware has never been changed. I did
try to update it but kmotion says the latest
firmware is already install so firmware is not
the issue. It feels like I'm losing
communication periodically but I'm not sure
why.